@font-face {
	font-family: "open_sans";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/opensans-bold-webfont.woff2") format("woff2"), url("../fonts/opensans-bold-webfont.woff") format("woff");
}
@font-face {
	font-family: "open_sans";
	font-style: italic;
	font-weight: 400;
	src: url("../fonts/opensans-italic-webfont.woff2") format("woff2"), url("../fonts/opensans-italic-webfont.woff") format("woff");
}
@font-face {
	font-family: "open_sans";
	font-style: normal;
	font-weight: 300;
	src: url("../fonts/opensans-light-webfont.woff2") format("woff2"), url("../fonts/opensans-light-webfont.woff") format("woff");
}
@font-face {
	font-family: "open_sans";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/opensans-regular-webfont.woff2") format("woff2"), url("../fonts/opensans-regular-webfont.woff") format("woff");
}
@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

/* Animations */

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.typed-cursor {
	opacity: 1;
	-webkit-animation: blink 0.7s infinite;
	-moz-animation: blink 0.7s infinite;
	animation: blink 0.7s infinite;
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}
@-webkit-keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
@keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}
@-webkit-keyframes flash {
	from,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
@keyframes flash {
	from,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}
@-webkit-keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}
@-webkit-keyframes shake {
	from,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
@keyframes shake {
	from,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}
@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}
@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}
.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}
@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
	from {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes wobble {
	from {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}
@-webkit-keyframes jello {
	from,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
@keyframes jello {
	from,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}
@-webkit-keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}
	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}
	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}
@keyframes bounceIn2 {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	60% {
		opacity: 0.6;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}
	to {
		opacity: 0.6;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.bounceIn2 {
	-webkit-animation-name: bounceIn2;
	animation-name: bounceIn2;
}
.bounceIn2:hover {
	-webkit-animation-name: bounceIn2;
	animation-name: bounceIn2;
	opacity: 1 !important;
	display: block;
}
@-webkit-keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes bounceInUp {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}
@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}
.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeIn2 {
	from {
		opacity: 0.7;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn2 {
	from {
		opacity: 0.7;
	}
	to {
		opacity: 1;
	}
}
.fadeIn2 {
	-webkit-animation-name: fadeIn2;
	animation-name: fadeIn2;
}
@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes fadeOutRight {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
@keyframes flip {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}
@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}
@-webkit-keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
@keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}
@keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}
.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
@keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}
.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
	from {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}
@keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}
.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}
@keyframes rollOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}
.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
@keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
@keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
@keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
@keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	to {
		opacity: 0;
	}
}
@keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}
.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}
.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}
.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

/* Animations END*/

body,
html {
	font-family: open_sans;
}
a {
	color: #ef4b43;
	text-decoration: underline;
	transition: color 200ms linear 0s;
}
a:hover,
a:focus,
a:visited {
	color: #d84c45;
}
.clear {
	clear: both;
}
.center_wrapper {
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}
.margin40 {
	margin-bottom: 40px !important;
	margin-top: 40px !important;
}
.logo-top,
.people,
.star,
.world,
.mic,
.key,
.apply,
.pencil {
	max-width: 100%;
	background-size: 100%;
	background-image: url("../images/sprite_hp.png");
}
.logo-top {
	background-position: 0 0%;
	background-size: 100%;
}
.people {
	background-position: 0 10.909091%;
	background-size: 134.899329%;
}
.star {
	background-position: 0 35.947712%;
	background-size: 136.734694%;
}
.world {
	background-position: 0 60.262726%;
	background-size: 139.583333%;
}
.mic {
	background-position: 0 85.596026%;
	background-size: 191.428571%;
}
.key {
	background-position: 0 92.307692%;
	background-size: 670%;
}
.apply {
	background-position: 0 96.169631%;
	background-size: 913.636364%;
}
.pencil {
	background-position: 0 100%;
	background-size: 913.636364%;
}
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}
.row > [class*='col-'] {
	display: flex;
	flex-direction: column;
}
.sprite-logo-top,
.sprite-arrow-big,
.sprite-cz,
.sprite-de,
.sprite-sk,
.sprite-us,
.sprite-container,
.sprite-key,
.sprite-apply,
.sprite-arrow-small,
.sprite-arrow-down {
	background-image: url("../images/sprite.png");
	background-size: 100% auto;
	max-width: 100%;
}
.sprite-logo-top {
	background-position: 0 0;
	background-size: 100% auto;
}
.sprite-arrow-big {
	background-position: 0 30.6452%;
	background-size: 344% auto;
}
.sprite-cz {
	background-position: 0 40.5759%;
	background-size: 491.429% auto;
}
.sprite-de {
	background-position: 0 48.6911%;
	background-size: 491.429% auto;
}
.sprite-sk {
	background-position: 0 56.8063%;
	background-size: 491.429% auto;
}
.sprite-us {
	background-position: 0 64.9215%;
	background-size: 491.429% auto;
}
.sprite-container {
	background-position: 0 73.2283%;
	background-size: 573.333% auto;
}
.sprite-key {
	background-position: 0 81.4136%;
	background-size: 573.333% auto;
}
.sprite-apply {
	background-position: 0 88.8312%;
	background-size: 781.818% auto;
}
.sprite-arrow-small {
	background-position: 0 93.6709%;
	background-size: 1011.76% auto;
}
.sprite-arrow-down {
	background-position: 0 100%;
	background-size: 1146.67% auto;
	display: inline-block;
	height: 18px;
	margin-top: 9px;
	width: 13px;
}
nav.navbar {
	background-color: #233c79;
	border-radius: 0;
	color: #fff;
	padding: 0;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 1100000;
/*	max-height: 95px;*/
}
.navbar_fixed_active nav.navbar {
	background-color: #233c79;
	border-radius: 0;
	color: #fff;
	padding: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10001;
	border-bottom: 2px solid #5bbb47;
/*	max-height: 95px;*/
}
.navbar_fixed_active .navbar-brand {
	margin-top: 8px;
}
.navbar_fixed_active .navbar-brand>img {
	max-height: 80px;
}
.align_center {
	text-align: center;
}
a.navbar-brand {
	margin-bottom: 6px;
	margin-top: 8px;
	margin-right: -70px;
    position: relative;
    z-index: 50000;
}
.pull-sm-right {
	display: inline-block;
	float: none !important;
	/* margin-left: -150px; */
}
.container-fuil.top {
    /* background: rgba(0, 0, 0, 0) url(../images/main_cover.jpg) no-repeat scroll center top / cover; */
    height: 510px;
    padding-top: 29px;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 2;
}
.vedlejsi_strana .container-fuil.top {
	height: 430px;
}
.vedlejsi_strana .top h1 {
	color: #fff;
	font-size: 68px;
	font-weight: 600;
	margin: 180px 0 0;
}
.bg_cut {
	position: absolute;
	bottom: -100px;
	left: -5px;
	width: 102%;
	height: 200px;
	display: none;
}
.bg_cut:after {
	height: 100%;
	width: 100%;
	position: relative;
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	transform: rotate(3deg);
	content: ' ';
	display: block;
	position: absolute;
	/* left:-75%; */
	background: #FFF;
	background-size: cover;
	top: 44px;
	left: -4px;
}
.bg_cut_top {
	position: absolute;
	top: -100px;
	left: -5px;
	width: 102%;
	height: 100px;
	display: none;
}
.bg_cut_top:after {
	height: 100%;
	width: 100%;
	position: relative;
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: ' ';
	display: block;
	position: absolute;
	/* left:-75%; */
	background: #FFF;
	background-size: cover;
	top: 40px;
}
.vedlejsi_strana.projekt .container-fuil.top {
	background: rgba(0, 0, 0, 0) url("../images/projekty/cover_photo.jpg") no-repeat scroll center top / cover;
}
.vedlejsi_strana.jak-vyucujeme .container-fuil.top {
	background: rgba(0, 0, 0, 0) url("../images/jakVyucujeme/cover.jpg") no-repeat scroll center top / cover;
}
.vedlejsi_strana.studium-a-skolne .container-fuil.top {
	background: rgba(0, 0, 0, 0) url("../images/studium/studium_cover.jpg") no-repeat scroll center top / cover;
}
.vedlejsi_strana.kontakt .container-fuil.top {
	background: rgba(0, 0, 0, 0) url("../images/kontakty/cover.jpg") no-repeat scroll center top / cover;
}
.vedlejsi_strana.tym-aap .container-fuil.top {
	background: rgba(0, 0, 0, 0) url("../images/tym/back.jpg") no-repeat scroll center top / cover;
}
.vedlejsi_strana.rekli-o-nas .container-fuil.top {
	background: rgba(0, 0, 0, 0) url("../images/rekli-o-nas/cover.jpg") no-repeat scroll center top / cover;
}
.vedlejsi_strana.americka-akreditace .container-fuil.top {
	background: rgba(0, 0, 0, 0) url("../images/akreditace/cover.jpg") no-repeat scroll center top / cover;
}
.navbar-light .navbar-nav .nav-link {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	padding-bottom: 30px;
	padding-top: 35px;
	position: relative;
	text-decoration: none;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .active>.nav-link:focus,
.navbar-light .navbar-nav .active>.nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.active:focus,
.navbar-light .navbar-nav .nav-link.active:hover,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .nav-link.open:focus,
.navbar-light .navbar-nav .nav-link.open:hover,
.navbar-light .navbar-nav .open>.nav-link,
.navbar-light .navbar-nav .open>.nav-link:focus,
.navbar-light .navbar-nav .open>.nav-link:hover {
	color: #fff;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .active > .nav-link:hover,
.navbar-light .navbar-nav .nav-link:hover {
	color: #5bbb47;
}
a.my_aap {
	background-color: #5bbb47;
	color: #fff;
	display: inline-block;
	float: right;
	font-size: 20px;
	font-weight: 700;
	height: 100%;
	padding: 32px 21px 31px;
	position: relative;
	text-decoration: none;
	transition: background-color 200ms linear 0s;
	margin-left: -100px;
	z-index: 99999999;
}
a.my_aap::before {
	border-bottom: 96px solid #ac1f30;
	border-left: 35px solid transparent;
	content: " ";
	height: 0;
	left: -34px;
	position: absolute;
	top: 0;
	transition: border-bottom 200ms linear 0s;
	width: 0;
	display: none;
}
a.my_aap:hover {
	background-color: #5aa849;
	text-decoration: none;
}
a.my_aap:hover::before {
	border-bottom: 96px solid #981b2a;
	content: " ";
}
.navbar-light .navbar-nav .nav-link::after {
	background-image: url("../images/sprite.png");
	background-position: 0 93.6709%;
	background-size: 1011.76% auto;
	bottom: 20px;
	content: " ";
	display: none;
	height: 12px;
	position: absolute;
	right: -3px;
	width: 16px;
}
.navbar-light .navbar-nav .nav-link:hover::after {
	animation: 0.3s ease-out 0s normal none 1 running fadeInFromNone;
	display: block;
	display: none;
}
.navbar-light .navbar-nav .nav-item.active .nav-link::after {
	display: block;
	opacity: 1;
	display: none;
}
a.lang_select {
	display: inline-block;
	float: right;
	height: 22px;
	margin-left: -150px;
	margin-right: 100px;
	padding: 30px 0 45px;
	width: 35px;
	color: #FFF !important;
	font-weight: bold;
	font-size: 22px;
	text-decoration: none;
}
a.lang_select > div {
	height: 21px;
	width: 35px;
}
img.sprite-key {
	margin-right: 5px;
	margin-top: -3px;
}
.top h1 {
	color: #fff;
	font-size: 72px;
	margin: 180px 0 0;
	text-shadow: 3px 3px 2px rgb(37, 37, 37);
	/* border-bottom: 2px solid #FFF; */
}
.mouse-icon {
	cursor: pointer;
	display: block;
	margin: 20px auto 0;
	position: relative;
	z-index: 10;
	background: none;
	text-align: center;
}
.mouse-icon .scroll div {
	/*
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 30px 0 30px;
	border-color: #ffffff transparent transparent transparent;
*/
	height: 70px;
	width: 84px;
	background: url(../images/scrool%204.png) no-repeat center top;
}
#map #content {
	/*    background: rgba(23, 43, 84, 0.84);*/
	padding: 20px 0 0 25px;
}
#map #content div {
	background: transparent !important;
}
.rotate {
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	overflow-y: hidden;
	overflow-x: hidden;
	width: 100%;
	height: 102px;
	font-size: 88px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: #FFF;
	margin-top: 14px;
	text-shadow: 3px 3px 2px rgb(37, 37, 37);
}
.rotate span {
	position: absolute;
	left: 50%;
	bottom: 200%;
	height: 4.8rem;
	line-height: 4.8rem;
	white-space: nowrap;
	margin: 0 auto;
	width: 1100px;
	margin-left: -550px;
	
}
.rotate span.active {
	bottom: 0;
}
.mouse-icon .scroll {
	display: inline-block;
}
.scroll_link {
	color: #FFF !important;
	text-decoration: none !important;
}
.mouse-icon p {
	margin-bottom: 5px;
	font-size: 14px;
	color: #c1c1c1;
	font-weight: 600;
}
.mouse-icon .scroll > div {
	animation-delay: 0s;
	animation-duration: 1.8s;
	animation-iteration-count: infinite;
	animation-name: scrolling;
	animation-play-state: running;
	animation-timing-function: linear;
}
@keyframes scrolling {
	0% {
		opacity: 0.8;
	}
	30% {
		opacity: 0.95;
	}
	100% {
		opacity: 0.8;
	}
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
	position: relative;
}
article {
	padding: 40px 0;
}
article .left img {
	width: 510px;
	float: left;
	margin-left: -50px;
	/* padding: 0 40px 50px 0; */
	display: inline-block;
	max-width: 100%;
}
article h2 {
	color: #233c79;
	font-size: 48px;
	font-weight: 700;
	line-height: 68px;
	margin: 0 auto 60px;
	position: relative;
	text-align: center;
}
article h3 {
	color: #fff;
	font-size: 62px;
	font-weight: 700;
	line-height: 54px;
	max-width: 510px;
}
article p {
	color: #353535;
	font-size: 17px;
	font-weight: 400;
}
article h2 span,
.studium_rizeni .date2 span {
	position: relative;
}
article h2 span::after,
.studium_rizeni .date2 span::after {
	background-image: url("../images/sprite.png");
	background-position: 0 30.6452%;
	background-size: 344% auto;
	bottom: -25px;
	content: " ";
	height: 36px;
	position: absolute;
	right: -10px;
	width: 50px;
	display: none;
}
article h3 span::after {
	background-image: url("../images/sprite.png");
	background-position: 0 30.6552%;
	background-size: 324% auto;
	bottom: -16px;
	content: " ";
	height: 19px;
	position: absolute;
	right: -6px;
	width: 30px;
	display: none;
}
.kontakt h2.text-center {
	margin-bottom: 15px;
	text-align: center;
	color: #233c79;
	font-size: 22px;
}
footer .container-fuil {
	background-color: #292929;
	color: #9f9f9f;
	font-size: 15px;
	padding: 15px 0 5px;
}
footer .container-fuil .container {}
footer h4 {
	color: #9f9f9f;
	font-size: 18px;
	font-weight: 400;
	padding-bottom: 7px;
	padding-top: 7px;
}
footer .left i {
	font-size: 26px;
	margin-right: 10px;
}
footer .right {
	text-align: right;
}
footer .middle {}
footer .middle ul {
	list-style: outside none none;
	padding-left: 0;
}
footer .middle li {
	line-height: 28px;
}
footer .middle li i {
	font-size: 17px;
	margin-left: 3px;
	margin-right: 15px;
}
footer a,
footer a:visited {
	color: #9f9f9f;
	text-decoration: none;
}
footer a:hover,
footer a:focus {
	color: #ef4b43;
}
p.main_text {
	padding: 0 3px 0 5px;
}
.button.red {
	background-color: #ef4b43;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 19px;
	font-weight: 700;
	margin: 0 auto;
	padding: 10px 25px;
	text-decoration: none;
	transition: background-color 200ms linear 0s;
}
.button.red:hover {
	background-color: #cd504a;
	text-decoration: none;
}
.hot_topic {
	background: rgba(0, 0, 0, 0) url("../images/back_hot_topic2.jpg") no-repeat scroll center top / cover;
	padding: 45px 0 0px;
	position: relative;
	overflow: hidden;
}
.hot_topic p {
	color: #fff;
	margin-bottom: 0;
	padding: 25px 0 0;
}
.hot_topic img {
	display: inline-block;
    margin: 0 auto;
    max-width: 98%;
    padding-bottom: 20px;
    padding-top: 0px;
    /* width: 410px; */
    max-height: 300px;
    padding-left: 110px;
}
.hot_topic_title {
	border-bottom: 1px solid;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 15px;
	width: 210px;
}
.news .wrapper,
.projekty_pristup .wrapper {
	padding: 0;
	position: relative;
	overflow: hidden;
}
.news .date,
.projekty_pristup .date {
	bottom: 0;
	position: absolute;
	right: 70px;
}
.news .date > div {
	border-bottom: 88px solid #ac1f30;
	border-left: 115px solid transparent;
	bottom: 0;
	height: 0;
	position: absolute;
	right: 0;
	width: 0;
}
.projekty_pristup .item .date img {
	display: inline-block;
	max-width: 23px;
	width: 75%;
	vertical-align: bottom;
}
.slick-dots {
	bottom: 10px;
	/* background: #000; */
	/* z-index: 1000000; */
	/* position: absolute; */
}
.slick-dots li button::before {
	font-family: "slick";
	font-size: 14px;
}
.projekty_pristup .date > div {
	border-bottom: 88px solid #172b54;
	border-left: 115px solid transparent;
	bottom: 0;
	height: 0;
	position: absolute;
	right: 0;
	width: 0;
}
.news .date > p,
.projekty_pristup .date > p {
	color: #fff;
	font-size: 13px;
	line-height: 20px;
	margin-bottom: 7px;
	padding: 5px 6px 0;
	position: relative;
	text-align: center;
	z-index: 2;
}
.news .date > p > strong,
.projekty_pristup .date > p > strong {
	font-size: 16px;
}
.news .item img,
.projekty_pristup .item img {
	max-width: 100%;
	width: 100%;
}
.news .item img.news_image {
	min-height: 150px;
}
.projekty_pristup .read_more,
.news .read_more {
	display: none;
}
.projekty_pristup .news_bottom h4,
.news .news_bottom h4 {
	/* margin-top: -27px; */
	z-index: 10000;
	position: relative;
	text-align: left;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 19px;
	padding: 0 75px 0 15px;
}
.news .item:hover .read_more {
	display: inline-block;
	animation: 0.3s ease-out 0s normal none 1 running fadeInFromNone;
}
.news .read_more,
.projekty_pristup .read_more {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	height: 100%;
	left: 0;
	padding: 19% 20px 0;
	position: absolute;
	text-align: center;
	text-shadow: 0 4px 1px rgba(0, 0, 0, 0.49);
	top: 0;
	width: 100%;
	/* display: block; */
}
.news .item,
.projekty_pristup .item {
	display: inline-block !important;
	float: none !important;
	margin: 0 -3px;
	padding: 10px;
	position: relative;
}
.container-fuil.news {
	padding: 35px 0 30px;
	text-align: center;
}
.news .item:hover a.overlay,
.projekty_pristup .item:hover a.overlay {
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	display: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.news .item a.overlay2,
.projekty_pristup .item a.overlay2 {
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10000;
}
.news .item:hover a.overlay {
	animation: 0.3s ease-out 0s normal none 1 running fadeInFromNone;
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
a.link img {
	height: 20px;
	margin-right: 10px;
	margin-top: -2px;
}
.news a.link,
.projekty_pristup a.link {
	display: inline-block;
	font-size: 17px;
	margin: 25px 0 -20px;
}
button.navbar-toggler {
	font-size: 28px;
	font-weight: 600;
	margin-left: 0px;
	margin-top: 34px;
	background: transparent;
	border: 0;
	outline: 0;
	float: right;
	height: 20px;
	margin-right: 150px;
}
h2.smaller {
	color: #233c79;
	font-size: 35px;
	font-weight: 400;
	line-height: 52px;
	margin-top: 15px;
}
article#jak-vyucujeme .polozky,
article#studium-a-skolne .polozky {
	margin: 35px 0 25px;
	text-align: center;
}
article#jak-vyucujeme .polozky > div,
article#studium-a-skolne .polozky > div {
	margin-bottom: 45px;
}
article#jak-vyucujeme .polozky h3,
article#studium-a-skolne .polozky h3 {
	color: #172b54;
	font-size: 26px;
	font-weight: 700;
	margin: 15px auto;
	text-align: center;
	width: 100%;
}
article#jak-vyucujeme .polozky p,
article#studium-a-skolne .polozky p {
	color: #3a3a3a;
	font-size: 17px;
	font-weight: 400;
	text-align: justify;
	padding: 0 10px;
}
.studium_zahranici {
	background: rgba(0, 0, 0, 0) url("../images/jakVyucujeme/square_blue_panel.jpg") no-repeat scroll 80% top;
	position: relative;
	background-size: cover;
}
.studium_zahranici h3 {
	color: #fefefe;
	font-size: 48px;
	font-weight: 700;
	max-width: 700px;
	padding: 60px 0 50px;
	margin: 0 auto;
}
.studium_zahranici p {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	max-width: 900px;
	text-align: center;
	margin: 0 auto;
}
.studium_zahranici ul {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 38px;
	list-style: outside none none;
}
ul.special {}
ul.special li {
	position: relative;
}
ul.special li::before {
	background-image: url("../images/sprite.png");
	background-position: 0 93.6709%;
	background-size: 1011.76% auto;
	content: " ";
	left: -27px;
	max-width: 100%;
	min-height: 13px;
	min-width: 17px;
	position: absolute;
	top: 11px;
}
.button.green {
	border-radius: 5px;
	background-color: #5bbb47;
	padding: 10px 20px;
	color: #FFF !important;
	text-decoration: none;
	transition: background-color 200ms linear 0s;
	display: inline-block;
	font-weight: 600;
	min-width: 200px;
}
.projekty_pristup h2 {
	padding: 30px 0 0px;
	margin-bottom: 35px;
}
.projekty_pristup h2 span::after {
	bottom: -35px;
	right: 5px;
}
.slick-initialized .slick-slide {
	display: inline-block;
}
.slick-initialized .slick-slide {
	display: inline-block;
}
.studium_last {
	background-color: #172b54;
	color: #fff;
	padding: 65px 0 15px;
	text-align: center;
}
.studium_last p {
	color: #fff;
}
.studium_last h3 {
	color: #fff;
	font-size: 64px;
	font-weight: 700;
	max-width: 100%;
	padding: 30px 0 40px;
	text-align: center;
}
.studium_last .first {
	font-size: 20px;
	font-weight: 400;
	/* text-align: justify; */
}
.studium_last .second {
	color: #fefeff;
	font-size: 66px;
	font-weight: 700;
	margin-bottom: 55px;
	padding-top: 25px;
}
.studium_last h2 span::after {
	bottom: -38px;
}
.studium_last .third {
	color: #fefeff;
	font-size: 15px;
	font-weight: 400;
	margin: 0 auto 10px;
	max-width: 400px;
	position: relative;
	width: 90%;
}
.studium_last .third .next {
	background: #172b54 none repeat scroll 0 0;
	line-height: 10px;
	padding: 0 20px;
	position: relative;
	text-align: center;
	z-index: 2;
}
.studium_last .third .line {
	border-bottom: 1px solid #e5e5e5;
	left: 0;
	position: absolute;
	top: -18px;
	width: 100%;
}
.studium_last .fourth {
	color: #fefeff;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 5px;
}
.studium_last .fifth {
	color: #fefeff;
	font-size: 25px;
	font-weight: 700;
}
.studium_last h4 {
	margin-bottom: 0;
	padding-top: 55px;
}
.studium_rizeni {
	background: rgba(0, 0, 0, 0) url("../images/studium/rizeni_back.jpg") no-repeat scroll center top / cover;
}
.studium_rizeni ul {
	color: #292929;
	font-size: 20px;
	font-weight: 700;
	line-height: 38px;
	list-style: outside none none;
}
.studium_rizeni h2.second {
	color: #172b54;
	font-size: 64px;
	font-weight: 700;
	margin-bottom: 0;
	padding: 40px;
}
.studium_rizeni .first {
	color: #292929;
	font-size: 18px;
	font-weight: 400;
	max-width: 870px;
	padding-bottom: 25px;
}
.studium_rizeni h4 {
	color: #172b54;
	font-size: 26px;
	font-weight: 700;
	margin-top: 25px;
}
.studium_rizeni .date1,
.studium_rizeni .date2 {
	color: #172b54;
	font-size: 50px;
	font-weight: 700;
	text-align: center;
}
.studium_rizeni .date1 img {
	display: inline-block;
	margin-top: -15px;
}
.studium_rizeni .button {
	display: block;
	margin: 0 auto;
	text-align: center;
	width: 310px;
}
.studium_rizeni .button img {
	margin-right: 20px;
	max-height: 30px;
}
.studium_cena h2 {
	font-size: 64px;
	font-weight: 700;
	padding-top: 50px;
}
.studium_cena h2.price {
	font-size: 86px;
	font-weight: 700;
	padding-top: 0;
}
.studium_cena p.text-center {
	color: #292929;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 15px;
	text-align: center;
}
.studium_cena h2 span::after {
	bottom: -15px;
	right: 10px;
}
.studium_absolvent {
	background: url(../images/studium/absolvetn_bar.jpg) no-repeat center top;
	padding-bottom: 25px;
	background-size: cover;
}
div#kolik-to-stoji {
	position: relative;
	z-index: 1000;
	background: #FFF;
}
.studium_absolvent h3 {
	margin: 0 auto;
	padding: 55px 0 60px;
	text-align: center;
	z-index: 2;
	position: relative;
}
.studium_absolvent ul {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	list-style: outside none none;
}
.studium_absolvent ul li {
	margin: 10px 0;
	vertical-align: middle;
}
.studium_absolvent ul li span {
	line-height: 25px;
	vertical-align: text-bottom;
}
.studium_absolvent ul img {
	float: left;
	margin-bottom: 15px;
	margin-right: 15px;
	margin-top: -19px;
	max-height: 70px;
	vertical-align: top;
}
.studium_uvod {
	padding-bottom: 60px;
	text-align: center;
}
.studium_uvod img {
	display: inline-block;
	margin-bottom: 15px;
	max-width: 32%;
}
.studium_uvod p {
	color: #292929;
	font-size: 18px;
	font-weight: 400;
}
article#studium-a-skolne {
	padding-bottom: 0;
}
.slide_kontakt .kontakt_foto {
	background: rgba(0, 0, 0, 0) url("../images/kontakty/photo_back.png") no-repeat scroll center center / contain;
	min-height: 264px;
	text-align: center;
}
.slide_kontakt .kontakt_info h2 {
	margin-bottom: -6px;
	text-align: left;
}
.slide_kontakt .director {
	color: #172b54;
	font-size: 19px;
	font-weight: 700;
	padding-left: 8px;
}
.slide_kontakt .mail_phone {
	margin-bottom: 3px;
	padding-left: 9px;
}
.slide_kontakt .kontakt_box {
	margin-bottom: 50px;
	text-align: center;
}
.slide_kontakt .kontakt_box > div {
	display: inline-block;
	float: none;
	margin-right: -15px;
	padding-left: 30px;
	text-align: left;
	vertical-align: top;
}
.slide_kontakt .mail_phone a {
	font-size: 22px;
	text-decoration: none;
}
.slide_kontakt .mail_phone a:hover {
	text-decoration: underline;
}
.slide_kontakt .mail_phone strong {
	color: #172b54;
	font-size: 20px;
	font-weight: 700;
}
div#map {
	min-height: 450px;
	margin: 60px 0;
}
.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom {
	right: 55px !important;
}
article#kontakt {
	padding-bottom: 0;
}
h4#firstHeading {
	color: #172b54;
	font-size: 18px;
	font-weight: bold;
}
.gm-style-iw {
	padding: 0 !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
}
.info_window1230:after {
	background: url(../images/kontakty/pointer.png) no-repeat;
	content: " ";
	height: 78px;
	width: 58px;
	position: absolute;
	bottom: -26px;
	z-index: -1;
	right: -19px;
}
.item.width_100 {
	width: 100% !important;
}
.vypis_zkraceny.news {
	text-align: center;
}
div#blog-grid {
	padding: 0;
}
article#aktuality {
	margin-top: 40px;
}
.clanek_text_uprava textarea {
	min-height: 100px;
	width: 100%;
	padding: 8px 12px;
}
.nacist_dalsi {
	text-align: center;
}
button.zkraceny {
	background-color: #db534c;
	border: 0 none;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 19px;
	font-weight: 700;
	margin: 40px auto 40px 0px;
	padding: 10px 20px;
	text-decoration: none;
	transition: background-color 200ms linear 0s;
}
button.zkraceny:hover {
	background-color: #95212f;
	text-decoration: none;
}
.vypis_zkraceny.news script {
	display: none !important;
}
.vedlejsi_strana.clanek header .top {
	height: 180px;
}
.vedlejsi_strana.clanek h1 {
	color: #233c79;
	font-size: 52px;
	font-weight: 700;
	line-height: 72px;
	margin: 0 auto 1px;
	position: relative;
	text-align: center;
}
.vedlejsi_strana.clanek p {
	color: #353535;
	font-size: 16px;
	font-weight: 400;
}
.vedlejsi_strana.clanek h2 span {
	position: relative;
}
.vedlejsi_strana.clanek h1 span::after {
	background-image: url("../images/sprite.png");
	background-position: 0 30.6452%;
	background-size: 344% auto;
	bottom: -25px;
	content: " ";
	height: 36px;
	position: absolute;
	right: -15px;
	width: 50px;
	display: none;
}
.clanek .info_panel {
	color: #233c79;
	margin-bottom: 25px;
	padding-bottom: 8px;
	width: 100%;
	text-align: center;
	font-weight: 600;
}
.zpet_vypis_link {
	font-weight: 700;
	text-decoration: none;
}
.zpet_vypis_link:hover {
	text-decoration: underline;
}
.zpet_vypis_link i {
	margin: 25px 10px 35px 0;
}
.row.polozky div>img {
	max-height: 75px;
}
li.nav-item:hover ul {
	background: #233c79;
	border: 0;
	text-align: center;
	max-height: 500px;
	transition: max-height 0.45s ease-in;
}
li.nav-item {
	position: relative;
}
ul.dropdown-menu {
	top: 80px;
	padding: 0;
	max-height: 0;
	transition: max-height 0.15s ease-out;
	overflow: hidden;
	display: block;
	background: #233c79;
	border: 0;
	text-align: center;
}
li.nav-item ul a {
	color: #FFF;
	text-decoration: none;
	padding: 10px 3px 10px 10px;
	display: inline-block;
	width: 100%;
	height: 100%;
	text-align: left;
	min-width: 170px;
}
ul.dropdown-menu li:hover {
	background: #5bbb47;
}
.slider_projekty.slick-initialized.slick-slider.slick-dotted {
	overflow: hidden;
	padding-bottom: 50px;
}
#map #content {
	min-width: 330px;
	padding: 20px 0 0 25px;
}
footer .middle li i.fa-graduation-cap {
	font-size: 14px;
    margin: 0 13px 0 1px;
}
footer .middle li i.fa-user {
	margin-right: 19px;
}
.vedlejsi_strana.clanek footer p {
	color: #9f9f9f;
	font-size: 16px;
	font-weight: 400;
}
button.slick-next.slick-arrow {
	right: 0;
	font-size: 48px;
	padding: 25px;
}
.slider_projekty .left,
.slider_projekty .right {
	position: absolute;
	top: 28%;
	z-index: 1;
	padding: 25px 15px;
	color: #FFF;
	background: rgba(239, 75, 67, 0.53);
	cursor: pointer;
}
.slider_projekty .left:hover,
.slider_projekty .right:hover {
	background: rgba(239, 75, 67, 0.93);
}
.slider_projekty .left i,
.slider_projekty .right i {
	font-size: 30px;
}
.slider_projekty .left {
	left: -11px;
	-webkit-border-top-right-radius: 50px;
	-webkit-border-bottom-right-radius: 50px;
	-moz-border-radius-topright: 50px;
	-moz-border-radius-bottomright: 50px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}
.slider_projekty .right {
	right: -11px;
	-webkit-border-top-left-radius: 50px;
	-webkit-border-bottom-left-radius: 50px;
	-moz-border-radius-topleft: 50px;
	-moz-border-radius-bottomleft: 50px;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}
i.fa.slick-arrow {
	position: absolute;
	top: 35%;
}
.gm-style div div * {
	margin-bottom: 5px;
	padding-left: 2px;
}
.info_window_ch0.info_window02.info_window402 {
	display: none;
}
.info_window_ch0.info_window00.info_window400 {
	display: none;
}
h2.dalsi_zajimave {
	font-size: 32px;
	margin-bottom: 0px;
}
.container-fuil.news.aktualita {
	padding-top: 10px;
	color: #FFF;
}
.vedlejsi_strana.clanek .date p {
	color: #FFF;
}
.projekt .clanek h4 {
	color: #233c79;
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 15px;
}
.projekt .clanek p {
	color: #292929;
	font-size: 17px;
	font-weight: 400;
}
.projekt .clanek .fotky img {
	max-width: 100%;
	padding: 10px 0;
}
.clanek .row.points img {
	max-width: 100%;
}
.clanek .row.points h5 {
	color: #233c79;
	font-size: 20px;
	font-weight: 700;
}
.row.points {
	margin-bottom: 25px;
}
.projekt .fotky {
	margin-top: 50px;
}
.projekt .fotky.dole img {
	max-width: 50%;
}
i.fa-minus {
	color: #5bbb47 !important;
}
.top h1 span {
	border-bottom: 5px solid #FFF;
	-webkit-box-shadow: 0px 1px 1px #de1dde;
	-moz-box-shadow: 0px 1px 1px #de1dde;
	box-shadow: 0px 3px 0px #393939;
}
h1.title_main_page {
	margin-top: 170px;
	font-size: 42px;
}
span.text_change {
	font-size: 100px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFF;
	text-shadow: 3px 3px 2px rgb(37, 37, 37);
	display: inline-block;
	height: 135px;
}
span.typed-cursor {
	font-size: 72px;
	font-weight: 400;
	display: inline-block;
	text-transform: uppercase;
	color: #FFF;
	text-shadow: 3px 3px 2px rgb(37, 37, 37);
	vertical-align: text-bottom;
	margin-bottom: -6px;
}
.texts {
	height: 140px;
	text-align: center;
}
.news_bottom .blue {
	position: absolute;
	bottom: 0px;
	left: 2px;
	width: 100%;
	height: 48px;
	text-align: left;
}
.news_bottom .blue:after {
	height: 100%;
	width: 100%;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
	content: ' ';
	display: block;
	position: absolute;
	background-color: #233c79;
	background-size: cover;
	bottom: 0px;
	left: -40px;
}
.news_bottom .date {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0px 48px 30px;
	border-color: transparent transparent #233c79 transparent;
}
.news_bottom .date > p {
	color: #fff;
	background-color: #5bbb47;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 7px;
	padding: 6px 0px 0 0px;
	position: relative;
	text-align: center;
	z-index: 2;
	width: 70px;
	height: 48px;
	margin-left: 0px;
	margin-top: 0px;
	vertical-align: bottom;
	display: inline-block;
}
.news_bottom .date > p > strong {
	font-size: 14px;
}
.scrollpos {
	display: none;
}
.prihlaska_button {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	border-radius: 4px;
	background-color: #ef4b43;
	position: fixed;
	right: -80px;
	top: 250px;
	z-index: 10000;
	display: block;
	text-decoration: none;
	padding: 10px 15px 15px;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transition: right 0.15s ease-in-out;
}
#hamburger-icon {
	position: relative;
}
#hamburger-icon:hover .line-1,
#hamburger-icon:focus .line-1 {
	transform: translateY(-1px);
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
}
#hamburger-icon .line.line-1 {
	top: 0;
}
#hamburger-icon .line.line-2 {
	top: 50%;
}
#hamburger-icon .line.line-3 {
	top: 100%;
}
#hamburger-icon .line {
	display: block;
	background: #ffffff;
	width: 30px;
	height: 3px;
	position: absolute;
	left: 0;
	border-radius: 1px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
#hamburger-icon[aria-expanded=true] .line-1 {
	transform: translateY(10px) translateX(0) rotate(45deg);
	-webkit-transform: translateY(10px) translateX(0) rotate(45deg);
	-moz-transform: translateY(10px) translateX(0) rotate(45deg);
}
#hamburger-icon[aria-expanded=true] .line-2 {
	opacity: 0;
}
#hamburger-icon[aria-expanded=true] .line-3 {
	transform: translateY(-10px) translateX(0) rotate(-45deg);
	-webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
	-moz-transform: translateY(-10px) translateX(0) rotate(-45deg);
}
.prihlaska_button:hover {
	right: -77px;
	color: #961c2a;
	background: #ef4b43;
}
.prihlaska_button img,
.prihlaska_button2 img {
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-right: 5px;
	background-size: 700% auto;
}
.prihlaska_button:hover,
.prihlaska_button:focus,
.prihlaska_button:visited {
	color: #fff;
	text-decoration: none;
	background-color: #db534c;
}
a.lang_select:hover {
	color: #ac1f30 !important;
}
.projekty_pristup .news_bottom h4 {
	padding: 4px 75px 0 15px;
}
.wrapper.clanek_text img {
	max-width: 100%;
}
li.nav-item.hidden-md-up.prihlaska {
	border-top: 3px solid rgba(255, 255, 255, 0.8);
	margin-top: 10px;
	padding-top: 10px;
}
li.nav-item.hidden-md-up.moje_aap {
	margin: 0px 0px 10px;
}
.studium_zahranici .arrow_right {
	position: absolute;
	left: 0%;
	top: -13%;
	background: url(../images/pristup/triangles_study_abroad.png) no-repeat;
	background-size: contain;
	width: 25%;
	height: 122%;
}
.studium_absolvent .arrow_top {
	background: url(../images/studium/triangle_skills.png) no-repeat center top;
	background-size: contain;
	height: 188px;
	position: absolute;
	width: 100%;
	height: 188px;
}
img.sticker {
	position: absolute;
	top: -230px;
	right: 120px;
	width: 260px;
}
.studium_last.main p {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 0;
}
.container-fuil.lyndon.main h2 {
	margin-top: 50px;
}
.container-fuil.lyndon.main {
	background: url(../images/lyndon-picture.png) no-repeat right bottom;
	background-size: contain;
	padding-bottom: 120px;
}
div#aktuality {
	height: 1px;
}
.lyndon.main p {
	padding-right: 300px;
	color: #172b54;
}
.container-fuil.hot_topic h3 {
	font-size: 46px;
	line-height: 46px;
}
img.lyndon_logo {
	width: 250px;
	margin-bottom: 50px;
}
.americka-akreditace .clanek {
	text-align: center;
}
.row.loga>div {
	display: inline-block;
	width: 19%;
	vertical-align: bottom;
	height: 120px;
	position: relative;
}
.row.loga {
	vertical-align: middle;
}
.row.loga>div img {
	display: inline-block;
	vertical-align: middle;
	max-height: 90px;
}
.vertical_helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	width: 0px;
}
#americka-akreditace p.main_text {
	max-width: 850px;
	margin: 0 auto;
	padding-bottom: 25px;
}
.row.loga>div img.bounceIn2:hover {
	opacity: 1 !important;
	animation-fill-mode: both;
}
img.logo_info {
	margin: 9px auto 5px 25px;
	display: block;
	max-width: 55px !important;
	float: right;
}
strong.link_info a {
	font-size: 22px;
}
a.link_info {
	font-size: 15px;
	font-weight: 400;
	color: #000000;
	text-decoration: none;
}
img.link_info_ico {
	height: 25px;
	margin-bottom: 5px;
	margin-right: 5px;
}
#faq h3 {
	font-size: 20px;
	max-width: 100%;
	cursor: pointer;
	color: #172b54;
	font-weight: 700;
	padding-left: 30px;
	outline: none;
	line-height: 26px;
	margin-bottom: 15px;
}
#faq h3 span::after {
	background-image: url(../images/sprite.png);
	background-position: 0 30.6552%;
	background-size: 250% auto;
	bottom: 0px;
	content: " ";
	height: 18px;
	position: absolute;
	right: 10px;
	width: 30px;
	-webkit-transform: rotate(107deg);
	-moz-transform: rotate(107deg);
	-o-transform: rotate(107deg);
	-ms-transform: rotate(107deg);
	transform: rotate(107deg);
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}
#faq h3.ui-state-active span::after {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	bottom: 3px;
	filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
	filter: #cc;
	-webkit-filter: grayscale(100%);
}
h4.dalsi_otazky {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #292929;
}
div.ui-accordion-content {
	padding-left: 30px;
}
h2.text-center.faq_title {
	margin-bottom: 30px;
}
.row.predmety {
	padding: 10px 0;
}
.row.predmety h4 {
	color: #172b54;
	font-size: 22px;
	font-weight: 700;
	padding: 15px 0;
}
.row.predmety p {
	color: #292929;
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
	min-height: 220px;
}
.row.predmety>div {
	margin-top: 30px;
}
.row.predmety p.border {
	border-right: 1px solid rgba(1, 1, 1, 0.31);
	padding-right: 100px;
	margin-right: -100px;
}
div#rocniky {
	text-align: center;
	padding: 70px 0 40px;
}
div#rocniky p {
	font-size: 18px;
}
img.rocniky_img {
	max-width: 95%;
	margin: 20px 0 30px;
}
div#projekty {
	max-height: 0px;
}
.projekty_pristup .item a.overlay {
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	display: block !important;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.projekty_pristup .item .read_more img {
	max-width: 100%;
	width: auto;
	display: inline-block;
	padding-bottom: 10px;
	margin-right: -5px;
}
.projekty_pristup .read_more {
	padding: 5% 20px 0;
	text-align: center;
	display: block;
}
.projekty_pristup .read_more p {
	text-align: center;
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
}
.projekty_pristup .read_more h4 {
	text-align: center;
	color: #ffffff;
	font-size: 40px;
	font-weight: 600;
	padding: 20px 60px;
	line-height: 48px;
}
span.project_line.first {
	width: 100px;
	height: 1px;
	display: inline-block;
	background: #FFF;
	margin-right: 15px;
	margin-top: 0px;
}
span.project_line.second {
	width: 100px;
	height: 1px;
	display: inline-block;
	background: #FFF;
	margin-left: 15px;
	margin-top: 0px;
}
span.project_line {
	display: inline-block;
	margin-top: 5px;
	margin-bottom: 3px;
}
.container-fuil.zaklady {
	padding-top: 40px;
	background: url(../images/usp-bg.jpg) no-repeat center bottom;
	background-size: 100%;
}
.row.squares>div {
	display: inline-block !important;
	padding: 0px;
	vertical-align: top;
	overflow: hidden;
	float: none !important;
	margin: 0 -5px;
}
.row.squares>div>div {
	margin: 19px 10px;
	background: #328fcd;
	padding: 25px;
	height: 100%;
}
#uvod .row.squares>div>div {
	min-height: 423px;
}
.row.squares {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	color: #ffffff;
}
.row.squares p {
	color: #ffffff;
	font-size: 15px;
}
.row.squares h4 {
	padding: 20px 0 10px;
	font-size: 20px;
	font-weight: 600;
}
.row.squares .second>div {
	background-color: #ef4b43;
}
.container-fuil.hot_topic h3 a {
	color: #FFF;
	text-decoration: none;
}
.row.squares .third>div {
	background-color: #233c79;
}
.row.squares .fourth>div {
	background-color: #5bbb47;
}
.button.green {
	border-radius: 5px;
	background-color: #5bbb47;
	padding: 10px 20px;
	color: #FFF !important;
	text-decoration: none;
	transition: background-color 200ms linear 0s;
	display: inline-block;
	font-weight: 600;
	min-width: 200px;
	border: 0;
}
.button.green:hover {
	background-color: #559d46;
}
.margin60 {
	margin: 60px 0;
}
.left p.main_text {
	float: right;
	display: block;
	max-width: 10%;
}
.hot_topic .button.green {
	width: 155px;
	min-width: 175px;
}
.jak-vyucujeme h2.text-center.smaller {
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 20px;
	line-height: 35px;
}
p.text-center {
	text-align: center;
}
.jak-vyucujeme p.text-center {
	max-width: 600px;
	margin: 0 auto;
}
.studium_zahranici h5 {
	color: #fefefe;
	font-size: 24px;
	font-weight: 600;
	margin: 50px auto -10px;
}
.jak-vyucujeme .projekty_pristup p.text-center {
	max-width: 900px;
	margin-bottom: 60px;
}
.bg_right.first {
	background: url(../images/jakVyucujeme/1.jpg) no-repeat right center;
	margin-top: 50px;
	background-size: contain;
}
.bg_left.second {
	background: url(../images/jakVyucujeme/2.jpg) no-repeat left center;
	background-size: contain;
}
.bg_right.third {
	background: url(../images/jakVyucujeme/3.jpg) no-repeat right center;
	background-size: contain;
}
.bg_left.fourth {
	background: url(../images/jakVyucujeme/4.jpg) no-repeat left center;
	background-size: contain;
}
.bg_left,
.bg_right {
	min-height: 350px;
	margin-bottom: 50px;
	position: relative;
}
.bg_left p,
.bg_right p,
.bg_left h4,
.bg_right h4 {
	max-width: 71%;
	margin: 0 auto;
	font-size: 16px;
}
.bg_left h4,
.bg_right h4 {
	padding-top: 30px;
	color: #233c79;
	font-size: 26px !important;
	padding-bottom: 20px;
	font-weight: 600;
}
.bg_left {
	text-align: right;
}
.bg_right {
	text-align: left;
}
.bg_left p,
.bg_left h4 {
	padding-left: 80px;
}
.bg_right p,
.bg_right h4 {
	padding-right: 80px;
}
.bg_left .filter,
.bg_right .filter {
	width: 100%;
	height: 102%;
	background-color: rgba(255, 255, 255, 0.8);
	position: absolute;
	left: 0;
	top: -1%;
}
.studium-a-skolne h2 {
	margin: 0px 0 30px;
}
p.text-center.max800 {
	max-width: 800px;
	margin: 0 auto;
}
.row.squares p.big_number {
	font-size: 82px;
	font-weight: 700;
}
.studium-a-skolne .row.squares {
	max-width: 1000px;
	margin: 55px auto;
	text-align: center;
	width: 100%;
	display: block;
}
.studium-a-skolne .row.squares h4 {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0;
}
.margin0 {
	margin: 0;
}
.row.squares p.cena {
	font-size: 24px;
	font-weight: 600;
}
.studium-a-skolne .row.squares>div>div {
	padding: 0;
}
.uppercase {
	text-transform: uppercase
}
.bolder {
	font-weight: 600;
}
.container-fuil.rizeni_terminy {
	background: url(../images/studium/PHG_square_BG_big.jpg) no-repeat bottom center;
	background-size: cover;
	color: #ffffff;
}
.rizeni_terminy h2.text-center {
	color: #FFF;
	padding: 40px 0 0px;
}
.rizeni_terminy p {
	color: #ffffff;
	text-align: center;
	font-size: 17px;
}
.row.terminy_tab .first p {
    padding-right: 34px;
}
.row.terminy_tab .second {
	padding-left: 90px;
}
.row.terminy_tab {
	max-width: 850px;
	margin: 50px auto 10px;
}
.prihlasky_stazeni .button {
	margin: 10px 15px;
	min-width: 400px !important;
	font-size: 15px;
}
p.termin1 {
	font-size: 32px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 0;
}
p.termin2 {
    font-size: 15px;
    font-weight: 300;
}
p.rozdeleni {
	margin-bottom: 0;
	vertical-align: top;
}
p.rozdeleni span {
	display: inline-block;
	height: 13px;
	width: 100px;
	border-bottom: 1px solid #FFF;
	margin: 0px 15px -4px;
}
.prihlasky_stazeni {
	margin-top: 10px;
}
.row.data {
	text-align: center;
	display: block;
}
.row.data>div {
	margin-top: 40px;
	display: inline-block !important;
	float: none !important;
	margin: 30px -5px 20px;
	border-right: 1px solid #8a8a8a;
	max-width: 280px;
}
.row.data p.datum {
	color: #233c79;
	font-weight: 700;
	font-size: 20px;
}
.row.data>div p {
	line-height: 30px;
}
.row.data>div.third,
.row.data>div.fifth {
	border-right: 0;
}
.pencils {
    background: url(../images/studium/tuzky.png) no-repeat;
    background-size: contain;
    width: 122px;
    height: 60%;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -23px;
}
.z_top {
	z-index: 6;
	position: relative;
}
.rizeni_dod h2.text-center {
	padding-top: 30px;
}
p.bigger {
	font-size: 26px;
	line-height: 36px;
}
.row.media p {
	font-size: 16px;
}
.row.media h4 {
	color: #233c79;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
}
.row.media .row {
	padding: 15px;
	margin-bottom: 30px;
}
.row.media .logo {
	max-width: 85%;
	margin: 0 auto 25px;
	padding-right: 10px;
	display: block;
}
.row.media .foto {
	box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.1);
	max-width: 90%;
	margin: 0 auto 10px;
	display: block;
}
.row.media {
	margin: 80px 0 60px;
}
.row.media .wrapper {
	position: relative;
	padding: 10px;
}
.row.media .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: transparent;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	text-align: center;
	vertical-align: text-bottom;
	display: block;
}
.row.media>div:hover .overlay {
	display: block;
	transition: background .25s ease-in-out;
	background: rgba(0, 0, 0, 0.8);
}
.row.media>div {
	position: relative;
}
.row.media a.media_link {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: transparent;
}
.row.media p.date {
	color: #b1b1b1;
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 7px;
}
.row.media>div .overlay span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	text-align: center;
	font-size: 34px;
	line-height: 40px;
	color: #FFF;
	left: 0;
	width: 100%;
	font-weight: bold;
	opacity: 0;
	text-shadow: 1px 1px 4px rgb(77, 77, 77);
}
.row.media>div:hover .overlay span {
	opacity: 1;
}
#rekli-o-nas h2.text-center.smaller {
	font-weight: 600;
	margin-bottom: 20px;
}
.row.kontakty {
	display: block;
	text-align: center;
	margin-top: 85px;
}
.row.kontakty>div {
	display: inline-block;
	margin: 0 -5px 40px;
	float: none;
	text-align: left;
}
.row.kontakty>div p {
	margin: 0;
}
.row.adresa img {
	width: 165px;
	max-width: 80%;
	position: absolute;
	right: 100px;
	bottom: 22px;
}
.kontakt .email {
	margin: 0;
	background: url(../images/kontakty/mail.png) no-repeat left 50%;
	padding-left: 40px;
	margin-right: -35px;
	line-height: 37px;
	font-size: 16px;
}
.kontakt .telefon {
	background: url(../images/kontakty/phone.png) no-repeat left 50%;
	padding-left: 40px;
	margin-right: -35px;
	line-height: 37px;
	font-size: 16px;
}
.row.kontakty p.jmeno {
	color: #233c79;
	font-size: 20px;
	font-weight: 700;
}
.kontakty .row div {
	padding: 0;
}
.row.kontakty p.pozice {
	color: #233c79;
	padding-bottom: 12px;
}
.row.adresa h4 {
	color: #233c79;
	font-size: 20px;
	font-weight: 700;
}
.row.adresa {
	margin-top: 40px;
	margin-bottom: 60px;
}
.row.adresa p.adresa {
	font-size: 16px;
}
.row.adresa p {
	font-size: 16px;
}
.row.adresa>div {
	position: relative;
}
#kontakt a {
	color: #000;
	text-decoration: none;
}
#kontakt a:hover {
	text-decoration: underline;
}
.table.kontakty {
	margin: 40px 0 100px;
}
.table.kontakty .jmeno {
	font-weight: 500;
	color: #233c79;
}
.table.kontakty {
	display: table;
	table-layout: fixed;
	width: 100%;
	margin-left: -13px;
}
.table.kontakty>div {
	display: table-row;
	height: 10px;
}
.table.kontakty span {
	display: table-cell;
	width: 100%;
	font-size: 15px;
	padding: 8px 15px;
}
#kontakt h4 {
	color: #233c79;
	font-size: 20px;
	font-weight: 600;
}
.hidden-400-up {
	display: none !important;
	width: auto !important;
}
.hidden-400-down {
	display: block;
}
.table.kontakty span span {
	display: inline-block;
	width: auto;
	padding: 0;
	color: #777777;
}
div#exCollapsingNavbar2 {
    margin-bottom: -5px;
}
#kontakt p.text-center.max800 {
	text-align: center;
	font-size: 16px;
}
.row.kontakty .first {
	margin-right: 10px;
}
#kontakt p.text-center.max800.bigger {
	font-size: 26px;
}
.container-fuil.news .row {
	display: block;
}
.news_bottom .blue::before {
	content: " ";
	display: inline-block;
	height: 100%;
	width: 1%;
	vertical-align: middle;
}
.news .news_bottom h4 {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0;
	line-height: 20px;
	margin-right: -50px;
	max-width: 95%;
}
.jak-vyucujeme .obrazek {
	position: absolute;
    right: 15px;
    top: -10px;
}
footer .middle li i.fa-newspaper-o {
    margin-right: 14px;
    margin-left: 0px;
}

.rizeni_terminy .bigger {
    font-size: 24px;
    padding: 10px 0 20px;
    display: inline-block;
    font-weight: 600;
}

a#prihlaska_mail_link {
    text-align: center;
    display: block;
    margin-bottom: 50px;
}

a#prihlaska_mail_link i {
    margin-right: 10px;
}

form#prihlaska_mail {
    margin: 10px 1px 40px;
    display: none;
}

form#prihlaska_mail .button {
    margin: 23px auto;
    display: block;
}

form#prihlaska_mail input {
    line-height: 33px;
}

video#bgvid {
    width: 116%;
    position: absolute;
    left: -8%;
    z-index: 0;
    top: 0px;
}

header {
	overflow-y: hidden;
	position: relative;
	background: rgba(0, 0, 0, 0) url(../images/main_cover.jpg) no-repeat scroll center top / cover;
}

.video_cover {
    background: rgba(0,0,0,.48);
    height: 100%;
    width: 100%;
    background-size: cover;
    top: 0;
    left: 0;
    position: absolute;
}

#smaller_rotate {
	font-size: 60px;
}

div#clanek {
    background: #fff;
}
.eu-cookies {
    position: fixed;
    left: 0;
    text-align: center;
    bottom: 0;
    font-size: 14px;
    padding: 5px;
    width: 100%;
    color: white;
    background-color: #233c79;
    z-index: 1000;
    border-top: 1px solid #FFF;
}
.eu-cookies a {
	color: #FFF;
}

.eu-cookies button:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ac1f30), color-stop(1, #da3b4e));
    background: -moz-linear-gradient(top, #ac1f30 5%, #da3b4e 100%);
    background: -webkit-linear-gradient(top, #ac1f30 5%, #da3b4e 100%);
    background: -o-linear-gradient(top, #ac1f30 5%, #da3b4e 100%);
    background: -ms-linear-gradient(top, #ac1f30 5%, #da3b4e 100%);
    background: linear-gradient(to bottom, #ac1f30 5%, #da3b4e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ac1f30', endColorstr='#da3b4e',GradientType=0);
    background-color: #0061a7;
}
.eu-cookies button {
    -moz-box-shadow: inset 0px 1px 0px 0px #c4374d;
    -webkit-box-shadow: inset 0px 1px 0px 0px #c4374d;
    box-shadow: inset 0px 1px 0px 0px #c4374d;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c4374d), color-stop(1, #c4374d));
    background: -moz-linear-gradient(top, #c4374d 5%, #c4374d 100%);
    background: -webkit-linear-gradient(top, #c4374d 5%, #c4374d 100%);
    background: -o-linear-gradient(top, #c4374d 5%, #c4374d 100%);
    background: -ms-linear-gradient(top, #c4374d 5%, #c4374d 100%);
    background: linear-gradient(to bottom, #ce3c53 5%, #c4374d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7',GradientType=0);
    background-color: #c4374d;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #b73348;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    /* font-family: Arial; */
    font-size: 13px;
    font-weight: 600;
    padding: 3px 24px;
    margin-left: 10px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #000000;
}

.news i.fa.fa-newspaper-o {
    font-size: 20px;
    margin: 13px 7px 0px 0;
    display: inline-block;
}

header.clanek_id_7 {
    background: rgba(0, 0, 0, 0) url(../images/dokumenty_cover.jpg) no-repeat scroll center top / cover;
}

header.clanek_id_7::after {
    content: "Dokumenty ke stažení";
    color: #fff;
    font-size: 68px;
    font-weight: 600;
    text-shadow: 3px 3px 2px rgb(37, 37, 37);
    margin: 0px auto 120px;
    text-align: center;
    width: 100%;
    display: block;
	line-height: 80px;
}
article.clanek_id_7 {
    padding-bottom: 150px;
}

.projekty_pristup.news .read_more h4 {
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    padding: 0px 60px;
	line-height: 34px;
}

a.link.text-center {
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: -13px;
}

a.link.text-center i {
	margin-right: 5px;
}

form#registrace2 input[type=email] {
    background: #505050;
    line-height: 32px;
    border: 0;
    color: #FFF;
    width: 64%;
    padding-left: 10px;
	margin-bottom: 10px;
}

form#registrace2 input[type=submit] {
    min-width: 100px;
    padding: 6px 12px;
	margin-bottom: 10px;
}

h4.odebirejte_nadpis {
    padding-top: 20px;
    margin-bottom: 0;
}

p.text-center.podminky_terminy .bigger {
    font-size: 28px;
    padding-top: 5px;
    font-weight: 600;
    display: inline-block;
}

.podminky_terminy {
    margin: 0 0 40px;
    color: #233c79;
    font-size: 24px;
}


.mat_temata .first a {
    color: #000;
    text-decoration: none;
}

.mat_temata {
    margin-top: 15px;
}

.projekty_pristup.news .item:hover a.overlay::after {
    content: "Zjistit více";
    font-weight: 600;
    color: #FFF;
    text-decoration: none !important;
    font-size: 28px;
}

.projekty_pristup.news .item:hover a.overlay {
    text-decoration: none !important;
}
.projekty_pristup.news .item:hover .read_more {
	display: none !important;
}

.projekty_pristup.news .item:hover a.overlay::before {
    content: " ";
    display: inline-block;
    height: 100%;
    width: 1%;
    vertical-align: middle;
}

.mat_temata td:not(.first) {
	width: 150px;		
}

.container-fuil.kriteria {
	background: url(../images/studium/kriteria_back.jpg) no-repeat right bottom;
	background-size: contain;
	padding-bottom: 35px;
}

.container-fuil.kriteria h4 {
    color: #233c79;
    font-size: 28px;
    font-weight: 700;
    padding: 0 0 20px;
}

.container-fuil.kriteria ul {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
}

.container-fuil.kriteria ul img {
    padding: 5px 10px 0px 0;
    margin-bottom: 25px;
    float: left;
	
}

.container-fuil.kriteria ul li {
    font-size: 15px;
    /* margin-bottom: 30px; */
    padding-bottom: 28px;
    min-height: 55px;
}

.container-fuil.kriteria h5 {
    color: #233c79;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 0 15px;
    max-width: 450px;
}

.container-fuil.kriteria p {
	max-width: 800px;
	font-size: 15px;
}

h5.text-center {
    text-align: center;
    width: 100%;
    margin: 25px 0 0;
    font-weight: 600;
    font-size: 21px;
}

.skoly_obrazky a img {
    border: 1px solid #747474 !important;
}

footer a.facebook:hover, footer a.facebook:focus {
    color: #3b5998;
}

a.hledame_ucitele {
    position: absolute;
    right: 0;
    top: -270px;
    z-index: 99;
}

div#den-otevrenych-dveri {
    display: block;
}

#form-dod {
}

.white-pop {
    position: relative;
    background: url(../images/popbg.jpg) no-repeat top left;
    background-size: cover;
    padding: 40px;
    width: auto;
    max-width: 850px;
    margin: 0px auto;
    text-align: left;
    border: 23px solid #223c79;
    color: #2e2e2e;
    font-size: 25px;
    font-weight: 400;
}

#form-dod img.rozdeleni {
    max-width: 90%;
    margin-bottom: 25px;
}

#form-dod h2 {
    color: #223c79;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
}

#form-dod h3 {
    padding-bottom: 0px;
    color: #223c79;
    font-size: 28px;
    font-weight: 900;
}

#form-dod p {
    padding-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
}

#form-dod img.chicken {
    position: absolute;
    right: 35px;
    bottom: 10px;
    width: 150px;
    max-width: 31%;
}

#form-dod p.vetsi {
    padding-bottom: 20px;
    color: #223c79;
    font-size: 34px;
    font-weight: 900;
    line-height: 42px;
}

#form-dod p strong {
    font-weight: 900;
}

#form-dod label, #form-dod .form-group {
	text-align: left;
}

#form-dod .button {
	float: none;
	margin-bottom: 0;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
    font-size: 50px;
}